home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktime vr / vrflattenmovie / vrflatten.h < prev   
Encoding:
Text File  |  2000-09-28  |  757 b   |  50 lines

  1. //////////
  2. //
  3. //    File:        VRFlatten.h
  4. //
  5. //    Contains:    Code showing how to call the QTVR file flattener.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 2000 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //
  13. //       <1>         05/11/00    rtm        first file
  14. //       
  15. //////////
  16.  
  17. #pragma once
  18.  
  19.  
  20. //////////
  21. //       
  22. // header files
  23. //       
  24. //////////
  25.  
  26. #ifndef __FILETYPESANDCREATORS__
  27. #include <FileTypesAndCreators.h>
  28. #endif
  29.  
  30. #ifndef __MOVIES__
  31. #include <Movies.h>
  32. #endif
  33.  
  34. #ifndef __QUICKTIMECOMPONENTS__
  35. #include <QuickTimeComponents.h>
  36. #endif
  37.  
  38. #ifndef __SCRIPT__
  39. #include <Script.h>
  40. #endif
  41.  
  42.  
  43. //////////
  44. //
  45. // function prototypes
  46. //       
  47. //////////
  48.  
  49. OSErr                        QTVRUtils_FlattenMovieForStreaming (Movie theMovie, FSSpecPtr theFSSpecPtr);
  50.